From 4c2d4c235bd80368e31cae9c375e9a585f6a6844 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 25 Sep 2025 03:28:27 +0000 Subject: (대표님) archiver 추가, 데이터룸구현 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/shared/[token]/page.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/[lng]/shared/[token]/page.tsx (limited to 'app/[lng]/shared/[token]') diff --git a/app/[lng]/shared/[token]/page.tsx b/app/[lng]/shared/[token]/page.tsx new file mode 100644 index 00000000..db7f5d7a --- /dev/null +++ b/app/[lng]/shared/[token]/page.tsx @@ -0,0 +1,15 @@ +// app/shared/[token]/page.tsx + +import { SharedFileViewer } from "@/components/file-manager/SharedFileViewer"; + +export default function SharedFilePage({ + params, +}: { + params: { token: string }; +}) { + return ( +
+ +
+ ); +} -- cgit v1.2.3